home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / empower_path.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  86 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10609);
  10.  script_bugtraq_id(2374);
  11.  script_cve_id("CAN-2001-0224");
  12.  script_version ("$Revision: 1.13 $");
  13.  name["english"] = "empower cgi path";
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "It was possible to
  17. get the physical location of a
  18. virtual web directory of this host by 
  19. issuing the command :
  20.  
  21.     GET /cgi-bin/empower?DB=whatever HTTP/1.0
  22.     
  23. Usually, the less the attacker knows about your
  24. system, the better it feels, so you should
  25. correct this problem.
  26.  
  27. Solution : use a newer version of this CGI
  28. Risk factor : Low";
  29.  
  30.  desc["francais"] = "Il s'est avΘrΘ possible
  31. d'obtenir l'emplacement physique du
  32. dossier web virtuel de ce serveur
  33. en entrant la commande :
  34.  
  35.     GET /cgi-bin/empower?DB=whatever HTTP/1.0
  36.     
  37. D'habitude, moins les pirates en savent sur
  38. votre systΦme, mieux il se porte, donc vous
  39. devriez corriger ce problΦme.
  40.  
  41. Solution : utilisez une nouvelle version de ce CGI
  42. Facteur de risque : Faible";
  43.  
  44.  script_description(english:desc["english"], francais:desc["francais"]);
  45.  
  46.  summary["english"] = "Attempts to find the location of the remote web root";
  47.  summary["francais"] = "Essaye de trouver le chemin d'accΦs α la racine web distante";
  48.  script_summary(english:summary["english"], francais:summary["francais"]);
  49.  
  50.  script_category(ACT_GATHER_INFO);
  51.  
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  54.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  55.  family["english"] = "CGI abuses";
  56.  family["francais"] = "Abus de CGI";
  57.  script_family(english:family["english"], francais:family["francais"]);
  58.  script_dependencie("find_service.nes", "http_version.nasl");
  59.  script_require_ports("Services/www", 80);
  60.  exit(0);
  61. }
  62.  
  63. #
  64. # The script code starts here
  65. #
  66.  
  67. include("http_func.inc");
  68. include("http_keepalive.inc");
  69.  
  70. port = get_http_port(default:80);
  71.  
  72. if(!get_port_state(port))exit(0);
  73.  
  74. foreach dir (cgi_dirs())
  75. {
  76.   d = string(dir, "/empower?DB=whateverwhatever");
  77.   req = http_get(item:d, port:port);
  78.   r = http_keepalive_send_recv(port:port, data:req);
  79.   if( r == NULL ) exit(0);
  80.   r = tolower(r);
  81.   if("db name whateverwhatever of directory /" >< r){
  82.       security_warning(port);
  83.     exit(0);
  84.     }
  85. }
  86.